The FullScreenView object is used to represent the view used to display the pictures in full-screen mode.
xPos | Long | read-write | x position of the view from the top left corner of the screen (generally 0). |
yPos | Long | read-write | y position of the view from the top left corner of the screen (generally 0). |
w | Long | read-write | width of the view. |
h | Long | read-write | height of the view. |
pic | Object | read only | The picture currently displayed. |
xOrg | Long | read-write | The horizontal offset of the picture on the screen. |
yOrg | Long | read-write | The vertical offset of the picture on the screen. |
zoomMultiplier | Long | read-write | The zoom multiplier factor. |
zoomDivisor | Long | read-write | The zoom divisor factor (zoom = zoomMultiplier / zoomDivisor). |
hWnd | Long | read only | The HWND handle of the full-screen view. |
ModifySlideShowMode(lMode As Long, bSetOrClear As Bool) As Long
Alter the full screen mode (use the SS_xxx constants)
StopAllSounds(bIncludingCurrentPicture As Bool)
Stops all the currently playing and pending sounds.
Can be useful in a Play Command block to stop all sounds and start a new one (set the bIncludingCurrentPicture parameter to False).
Example:
script|app.GetFullScreenView().StopAllSounds(False)|-|2
media|D:\Musik\NewMusicFile.mp3
*C
MoveImage (nCmd As Long, bCorners As Bool)
Validate picture position and redraw the full-screen view accordingly.
Use the virtual key codes VK_xxx for the nCmd parameter. Set bCorners to True to move the picture corners (with VK_HOME, VK_END, VK_PRIOR and VK_NEXT).